.heroic {
  background: #2a2a2a;
  color: white;
  padding: 3rem 1rem;
}

.heroic h1 {
  font-size: 2.5rem;
}

.heroic .highlight {
  color: orange;
}

/* Filters */
.filters {
  background: #f3f3f3;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.filters input,
.filters select,
.filters button {
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.btn-outline {
  background: white;
  border: 1px solid #ddd;
  cursor: pointer;
}

.btn-outline:hover {
  background: orange;
  color: white;
  border-color: orange;
}

/* Results */
.results {
  padding: 2rem 0;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-content {
  padding: 1rem;
}

.service-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #eee;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 0.3rem;
}

.badge.green {
  background: #4caf50;
  color: white;
}

.service-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-actions button {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.service-actions .btn-call {
  background: white;
  border: 1px solid #ddd;
}

.service-actions .btn-book {
  background: orange;
  color: white;
}
.pagination
{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.pagination .btn-outline{
    background: white;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    cursor: pointer;
    font-size:  0.9rem;
    border-radius:  5px;
}
.pagination .btn-outline:hover {
    background: orange;
    color: white;
    border-color: orange;
}

/* Footer */
.footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
/* Sidebar Styles for Mobile */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

/* Mobile - Sidebar */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 4rem 2rem;
        gap: 1.5rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.show {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 2rem;
        z-index: 1000;
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-cta .btn {
        width: 100%;
        text-align: center;
    }
}
