html {
    scroll-behavior: smooth;
}
body { font-family: 'Heebo', sans-serif; color: #444444; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }
.hero-gradient {
    background: linear-gradient(rgba(1, 121, 223, 0.65), rgba(1, 121, 223, 0.65)), url('https://poolpeopleservice.com/wp-content/uploads/2018/07/pool-bg-1-1.jpg');
    background-size: cover;
    background-position: center;
}
.page-header {
    background: linear-gradient(rgba(1, 121, 223, 0.8), rgba(1, 121, 223, 0.8)), url('https://poolpeopleservice.com/wp-content/uploads/2018/07/pool-bg-1-1.jpg');
    background-size: cover;
    background-position: center;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0179de;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(1, 121, 223, 0.4);
    transition: all 0.3s ease;
}
#back-to-top:hover {
    background-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
#back-to-top.show {
    display: flex;
}

/* Star Ratings */
.star-rating {
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
}
.lightbox-close:hover {
    color: #0179de;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 0 1rem;
}
.lightbox-nav:hover {
    color: #0179de;
}
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }
.lightbox-img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
