/* ===== SERVICES PAGE STYLES ===== */

.services-hero {
    height: 50vh;
    background: url('../images/womens_services.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 72px;
}

.services-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 4.5rem);
    color: var(--white);
    font-weight: 600;
}

.services-hero-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.services-hero-content p {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin-top: 10px;
}

.services-main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: rgba(240, 68, 200, 0.4);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--text);
    font-weight: 600;
}

.category-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    margin: 60px 0 30px;
    color: var(--text);
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(45, 7, 90, 0.05);
    border: 1px solid rgba(240, 68, 200, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(45, 7, 90, 0.12);
    border-color: var(--gold-light);
}

.service-img {
    height: 280px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-body {
    padding: 35px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-body p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.btn-book {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-book::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), #B219D5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-book:hover {
    color: var(--deep);
    border-color: var(--gold);
}

.btn-book:hover::before {
    transform: scaleX(1);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-main {
        padding: 60px 20px;
    }
}

