/* Services Page Specific Styles */
.services-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://placehold.co/1920x1080/ff6b6b/ffffff?text=Our+Services');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.5rem;
}

.services-list {
    padding: 5rem 0;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.service-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    width: 300px;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
    margin-bottom: 1rem;
}

.service-item ul {
    list-style: none;
    margin: 1rem 0;
}

.service-item ul li {
    margin-bottom: 0.5rem;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-item ul li:before {
    content: "•";
    color: #ff6b6b;
    position: absolute;
    left: 0;
}

.price {
    font-weight: bold;
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.booking-cta {
    background-color: #f9f9f9;
    padding: 5rem 0;
    text-align: center;
}

.booking-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.booking-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1.2rem;
    }

    .service-category h2 {
        font-size: 2rem;
    }

    .service-item {
        width: 100%;
        max-width: 300px;
    }

    .booking-cta h2 {
        font-size: 2rem;
    }
} 