/* ========== CITY HOME PAGE - BALANCED 50/50 VARIANT ========== */
/* Additional styles for Toronto & Vancouver balanced (friends + teams) pages */

/* ==================== HERO CTA BALANCED ==================== */
.hero-cta-balanced {
    gap: 15px;
}

.hero-cta-balanced .btn-hero-primary,
.hero-cta-balanced .btn-hero-secondary {
    min-width: 240px;
}

.btn-hero-team {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-hero-team:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
}

/* ==================== FEATURED REVIEW (BALANCED) ==================== */
.review-featured-balanced {
    max-width: 600px;
    margin: 0 auto 35px;
    padding: 28px 35px;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: 16px;
    border-left: 4px solid var(--home-primary);
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    text-align: center;
}

.review-featured-balanced .review-stars {
    color: #f5a623;
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-featured-balanced .review-quote {
    font-family: 'Hind', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    line-height: 1.7;
    margin: 0 0 15px 0;
    padding: 0;
    border: none;
}

.review-featured-balanced .review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.review-featured-balanced .review-author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
}

/* ==================== FAQ GRID BALANCED (4 items) ==================== */
.faq-grid-balanced {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item-team {
    background: linear-gradient(135deg, #fff 0%, #fef9f9 100%);
    border-left-color: var(--home-primary);
}

.faq-item-team h3 {
    color: var(--home-primary);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-cta-balanced {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-balanced .btn-hero-primary,
    .hero-cta-balanced .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .review-featured-balanced {
        margin: 0 15px 30px;
        padding: 22px 25px;
    }
    
    .review-featured-balanced .review-quote {
        font-size: 1rem;
    }
    
    .faq-grid-balanced {
        grid-template-columns: 1fr;
    }
}





