@charset "utf-8";
/* ==================================================
   Existing card & image styles
   ================================================== */

.card-img-top.card-img-318x140 {
  display: block;
  width: 100%;
  height: 140px !important;
  object-fit: cover;
}

.card-no-border {
  border: none !important;
}

.card-image-swap img {
  cursor: pointer;
  transition: opacity 0.25s ease-in-out;
}

.card-link-image {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-link-image:focus,
.card-link-image:focus-visible {
  outline: none;
}

.card-link-image img {
  outline: none;
  border: none;
}

.card-no-border:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* ==================================================
   TOP BAR — FINAL SPACING
   ================================================== */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 8px;
  margin-bottom: 10px;   /* ✅ NEW: space below the bar */

  padding: 0;
  background-color: #0080FF; /* RGB(0,128,255) */
}

/* LEFT: menu padding */
.topbar-menu {
  padding-left: 5%;
}

/* Remove unwanted Ajatix spacing */
.topbar-menu,
.topbar-menu ul,
.AJXCSSMenuOGUYRbC {
  margin: 0 !important;
}

/* OPTICAL CENTERING */
.topbar-center {
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;

  position: relative;
  left: 1.5%;
}

/* RIGHT: phone */
.topbar-phone {
  padding-right: 10px;
  white-space: nowrap;
}

.topbar-phone-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.topbar-phone-link:hover {
  text-decoration: underline;
}

/* Mobile behavior */
@media (max-width: 768px) {
  .topbar {
    flex-wrap: wrap;
  }

  .topbar-menu {
    padding-left: 0;
  }

  .topbar-center {
    flex-basis: 100%;
    left: 0;
    padding: 6px 10px 0 10px;
    white-space: normal;
  }

  .topbar-phone {
    flex-basis: 100%;
    text-align: center;
    padding: 6px 0;
  }
}

/* ==================================================
   HOMEPAGE INTRO (left image + caption)
   ================================================== */

.intro-photo {
  border-radius: 6px;
}

.intro-caption {
  font-size: 1.02rem;
  line-height: 1.5;
}

/* ==================================================
   SERVICE TILES (3 wide x 4 high)
   ================================================== */

.service-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  height: 100%;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.service-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.service-tile-img {
  width: 100%;
  height: 86px;            /* keeps the grid uniform */
  object-fit: contain;     /* icons stay clean */
  display: block;
}

.service-tile-label {
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

@media (max-width: 576px) {
  .service-tile-img {
    height: 74px;
  }
}
