/* ===============================
   MASTER SERVICE AREA PAGE STYLES
================================== */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

.hero-section {
  background: #156082;
  color: white;
  text-align: center;
  padding: 120px 20px 60px; /* add top padding for fixed navbar */
}


.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  background-color: #ff6600;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-buttons .btn:hover {
  background-color: #cc5200;
}

.services-row {
  background-color: #ffffff;
  text-align: center;
  padding: 40px 20px;
}

.services-row h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #003366;
}

.services-row .icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.services-row .icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 120px;
}

.services-row .icons img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.grid-section {
  padding: 50px 20px;
  background-color: #f2f2f2;
  text-align: center;
}

.grid-section h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 30px;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.state-grid > * {
  display: block;
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.state-grid a {
  color: #003366;
  text-decoration: none;
}

.state-grid > *:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.state-grid strong {
  color: #ff6600;
}

.state-grid p {
  margin: 0;
  line-height: 1.5;
}

.footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 40px;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  margin-top: 3em;    /* Add space below the navbar */
  margin-bottom: 0;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.95rem;
  margin: 0;          /* No extra space above or below */
  padding: 0;
  color: white;
}

.hero-section h1 {
  margin-top: 0.1em;  /* Minimal space above H1 */
}

.breadcrumb li + li::before {
  content: "›";
  margin: 0 6px;
  color: #f4f8fa;
}

.breadcrumb a {
  color: #f4f8fa;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.breadcrumb a:hover {
  border-bottom: 2px solid #FFA94D;
}
