.service-detail-page {
    min-height: 100vh;
    padding-top: 2rem;
}

.service-detail-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--deep-turquoise) 100%);
}

.service-detail-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.service-detail-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.service-detail-hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.service-detail-hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.back-button {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    color: var(--turquoise);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-button:hover {
    background: white;
    transform: translateX(-5px);
}

.service-detail-content {
    padding: 4rem 2rem;
    background: white;
}

.service-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.service-benefits {
    background: linear-gradient(135deg, rgba(61, 218, 215, 0.05), rgba(255, 139, 139, 0.05));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--sand);
}

.service-benefits h3 {
    color: var(--turquoise);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: bold;
    font-size: 1.3rem;
}

.service-gallery {
    margin-top: 4rem;
}

.service-gallery h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--turquoise);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item-large {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item-large:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(61, 218, 215, 0.3);
}

.gallery-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-pricing {
    background: linear-gradient(180deg, var(--turquoise) 0%, var(--light-turquoise) 100%);
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.service-pricing h2 {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card .duration {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral);
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 1.5rem;
}

.pricing-card .btn-primary {
    width: 100%;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--turquoise);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .service-info-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .back-button {
        top: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

