/* ========================
   SERVICES PAGE STYLES
   ======================== */

/* Hero Section with Navbar Overlay */
.service-hero {
  background: url('../images/cinci_skyline.jpg') center/cover no-repeat;
  height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.service-hero .navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.service-hero .navbar a {
  color: #fff;
}

.service-hero h1 {
  margin-top: 120px;
  font-size: 2.5rem;
  font-weight: bold;
}

.service-text h2 {
  color: white;
}

.service-paragraph {
  color: white;
}

/* Full-width Sticky Footer */
footer {
  background: white;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  width: 100vw;
  margin: 0;
  margin-left: calc(-50vw + 50%);
  flex-shrink: 0; /* prevents footer from shrinking */
}

.footer-text {
    color: #001f3f;
}


footer .footer-logo {
  max-height: 80px;
  margin-bottom: 1rem;
}


.service-detail {
  margin: 8rem auto 4rem;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-text h2 {
  color: white;
  margin-bottom: 1rem;
}

.service-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: white;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}