/**
 * Service Pages Stylesheet
 * Specific styles for individual service detail pages
 * Used across all service pages for consistent layout and design
 */

.service-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../../images/services/stain-removal-hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
}

/* Page-specific hero backgrounds */
.service-hero--caravan::before {
    background-image: url("../../images/services/caravan-hero.webp");
}

.service-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.service-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-badge {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-badge__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.service-badge__title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.service-badge__text {
    font-size: 0.875rem;
    color: #666;
}

/* Feature Cards Grid - 3 columns */
.services-overview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Related Services Grid - 4 columns */
.related-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.related-service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.related-service-card__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.related-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-service-card__content {
    padding: 1.5rem;
}

.related-service-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.related-service-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-service-card__title a:hover {
    color: #00a693;
}

.related-service-card__description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .services-overview__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 500px;
        padding: 4rem 0 3rem;
    }
    
    .service-hero__title {
        font-size: 2rem;
    }
    
    .service-hero__description {
        font-size: 1rem;
    }
    
    .service-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-overview__grid {
        grid-template-columns: 1fr;
    }
    
    .related-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .related-services__grid {
        grid-template-columns: 1fr;
    }
}

/* Breadcrumb Navigation Styles */
.breadcrumb {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.breadcrumb__list {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

.breadcrumb__link {
    color: #00a693;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb__link:hover {
    color: #008577;
    text-decoration: underline;
}

.breadcrumb__current {
    color: #1a1a1a;
    font-weight: 600;
}

/* Benefits List Styles */
.benefits-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefits-list__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-list__icon {
    color: #00a693;
    font-size: 1.25rem;
}

/* Process CTA Container */
.process__cta-container {
    text-align: center;
}

.process__cta-description {
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Section Gray Background */
.section--gray {
    background: #f8f9fa;
}

/* Pricing Note Styles */
.pricing__note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.875rem;
}

/* Pricing Grid */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Seasonal Packages Section */
.pricing__seasonal {
    margin-top: 4rem;
}

.pricing__seasonal-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.pricing__seasonal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive: Stack seasonal cards on mobile */
@media (max-width: 768px) {
    .pricing__seasonal-grid {
        grid-template-columns: 1fr;
    }
}

/* Boat & Yacht Hero Background */
.service-hero--boat::before {
    background-image: url('../../images/services/boat-hero.webp');
    opacity: 0.15;
}

/* Motorcycle Hero Background */
.service-hero--motorcycle::before {
    background-image: url('../../images/services/motorcycle/motorcycle-hero.webp');
    opacity: 0.15;
}

/* Fix header spacing on service pages - remove excessive hero padding */
.hero.section {
    padding-top: 0;
    padding-bottom: 0;
    min-height: auto;
    background: transparent;
}

@media screen and (max-width: 767px) {
    .hero.section {
        padding-top: 0;
    }
}
