@import url('../../_base/css/base.css');

:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAF8F8;
    --bg-card: #FFFFFF;
    --bg-hero: #FDF5F7;
    
    --text-primary: #1A1A1A;
    --text-secondary: #333333;
    --text-muted: #6B6B6B;
    --text-light: #999999;
    
    --accent: #C27B7B;
    --accent-hover: #D48E8E;
    --accent-soft: rgba(194, 123, 123, 0.08);
    --accent-medium: rgba(194, 123, 123, 0.15);
    
    --border: #F0E8E8;
    --border-light: #F8F2F2;
}

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

.service-category {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.service-category:hover {
    box-shadow: 0 8px 32px var(--shadow);
    transform: translateY(-2px);
}

.service-cat-header {
    background: var(--accent-soft);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.service-cat-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.service-cat-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.service-list {
    padding: 4px 0;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.service-row:hover {
    background: var(--bg-secondary);
}

.service-row:last-child {
    border-bottom: none;
}

.service-name {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-row .price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
    border-color: var(--accent);
}

.team-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #F5E6E6, #FAF0F0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.team-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 24px;
}

.team-info h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.team-info .role {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-info .bio {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Booking */
.booking {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-info h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.booking-info > p {
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.booking-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.bc-item span {
    font-size: 1.3rem;
}

.booking-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
}

@media (max-width: 900px) {
    .booking-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}
