.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.grooming-services {
    padding: 4rem 0;
    background: var(--bg-light);
}

.grooming-services .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grooming-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.grooming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.grooming-card h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.grooming-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.grooming-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.grooming-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.price-note {
    color: var(--text-light);
    font-style: italic;
    margin: 1rem 0;
}

.price-highlight {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.25rem;
    margin: 1rem 0;
}

.grooming-card.special {
    border: 2px solid var(--secondary);
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.grooming-card.package {
    border: 3px solid var(--primary);
    background: linear-gradient(135deg, #ffffff 0%, #ebf8ff 100%);
    grid-column: span 1;
}

@media (min-width: 768px) {
    .grooming-card.package {
        grid-column: span 2;
    }
}

.before-after {
    padding: 4rem 0;
}

.before-after h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-item {
    text-align: center;
}

.image-placeholder {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 3rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 3rem;
    border: 2px dashed var(--border);
}

.image-placeholder.highlight {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border-color: var(--secondary);
}

.gallery-item p {
    font-weight: 600;
    color: var(--text);
}

.before-after .btn-secondary {
    display: block;
    margin: 2rem auto 0;
}