/* Babysitter landing — page-specific components; shared layout from parent.css */

.bs-page {
    --bs-bg: #f9f7f4;
    --bs-white: #ffffff;
    --bs-ink: #1a1815;
    --bs-ink-2: #6b6560;
    --bs-ink-3: #b8b2ab;
    --bs-accent: #c4522a;
    --bs-line: rgba(26, 24, 21, 0.08);
    --bs-radius: 20px;
}

/* Γιατί Athens Babysitters — premium card grid */
.bs-why-join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bs-why-join-card {
    background: #ffffff;
    border: none;
    border-radius: 22px;
    padding: 44px 36px 40px;
    position: relative;
    box-shadow: 0 8px 32px rgba(26, 24, 21, 0.04), 0 2px 8px rgba(26, 24, 21, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bs-why-join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(26, 24, 21, 0.06), 0 4px 14px rgba(26, 24, 21, 0.03);
}

.bs-why-join-card .bs-icon-badge {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 999px;
    color: rgba(26, 24, 21, 0.32);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: rgba(26, 24, 21, 0.04);
    flex-shrink: 0;
}

.bs-why-join-card .bs-icon-badge svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bs-why-join-card h3 {
    font-family: "Manrope", system-ui, -apple-system, sans-serif;
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    line-height: 1.35;
    text-align: left;
    color: var(--bs-ink);
}

.bs-why-join-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.72;
    color: var(--bs-ink-2);
    text-align: left;
}

/* Τι κοιτάμε — editorial profile requirements (matches party trust-list) */
.bs-profile-section .parent-section-title {
    margin-bottom: 56px;
}

.bs-profile-list {
    gap: 52px 88px;
    max-width: 960px;
}

.bs-profile-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-top: 3px;
    color: var(--parent-accent, #c4522a);
}

.bs-profile-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Testimonials carousel */
.bs-testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.bs-testimonial-stage {
    display: grid;
}

.bs-testimonial {
    background: var(--parent-white, #ffffff);
    border: 1px solid var(--parent-line, rgba(26, 24, 21, 0.08));
    border-radius: var(--parent-radius, 20px);
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.bs-testimonial-slide {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.bs-testimonial-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.bs-stars {
    color: var(--parent-accent, #c4522a);
    font-size: 0.82rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.bs-quote {
    font-family: "Manrope", system-ui, -apple-system, sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.65;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.bs-sep {
    width: 32px;
    height: 1px;
    background: var(--parent-line, rgba(26, 24, 21, 0.08));
    margin-bottom: 20px;
}

.bs-name {
    font-size: 0.8rem;
    font-weight: 500;
}

.bs-meta {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--parent-ink-3, #b8b2ab);
    margin-top: 3px;
}

.bs-testimonial-dots {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.bs-testimonial-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(26, 24, 21, 0.18);
    cursor: pointer;
    transition: width 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.bs-testimonial-dot:hover {
    opacity: 0.85;
}

.bs-testimonial-dot.is-active {
    width: 20px;
    background: rgba(196, 82, 42, 0.7);
}

@media (max-width: 960px) {
    .bs-why-join-grid {
        grid-template-columns: 1fr;
    }

    .bs-profile-list {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .bs-testimonial {
        padding: 36px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bs-why-join-card:hover {
        transform: none;
    }
}
