/* ========== TEAM BUILDING - CONVERSION FIRST ========== */
:root {
    --tb-primary: #F60B0E;
    --tb-dark: #0a0a0a;
    --tb-accent: #1a1a2e;
}

/* ==================== 1. HERO ==================== */
.tb-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tb-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/bg-team-building.jpg') center/cover;
    transform: scale(1.05);
}

.tb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
}

.tb-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 100px 20px 60px;
    max-width: 800px;
}

.tb-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.tb-hero-subtitle {
    font-family: 'Hind', sans-serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin: 0 0 35px 0;
}

.tb-hero-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tb-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--tb-primary), #c00);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(246,11,14,0.4);
}

.tb-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(246,11,14,0.5);
    color: #fff;
    text-decoration: none;
}

.tb-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tb-cta-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
}

.tb-hero-trust {
    font-family: 'Hind', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ==================== 2. CITY SELECTOR ==================== */
.tb-planner {
    background: #fff;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 60px;
    z-index: 100;
}

.tb-planner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tb-planner-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tb-city-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tb-city-btn {
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    background: #f5f5f5;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tb-city-btn:hover {
    background: #eee;
    color: #333;
    text-decoration: none;
}

.tb-city-btn.active {
    background: var(--tb-primary);
    color: #fff;
}

.tb-city-reset {
    font-family: 'Hind', sans-serif;
    font-size: 0.85rem;
    color: #999;
    text-decoration: underline;
}

.tb-city-reset:hover {
    color: #666;
}

/* ==================== 3. GAMES LIST ==================== */
.tb-games {
    background: #f8f8f8;
    padding: 70px 0 80px;
}

.tb-games .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.tb-games-header {
    text-align: center;
    margin-bottom: 45px;
}

.tb-games-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #181818;
    margin: 0 0 12px 0;
}

.tb-games-header p {
    font-family: 'Hind', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.tb-games-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Game Card */
.tb-game-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.tb-game-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
    border-color: #ddd;
}

.tb-game-image {
    width: 240px;
    min-height: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.tb-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tb-game-card:hover .tb-game-image img {
    transform: scale(1.08);
}

.tb-game-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
}

.tb-badge-anytime {
    padding: 6px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: rgba(0,0,0,0.7);
    border-radius: 50px;
}

.tb-game-content {
    flex: 1;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
}

.tb-game-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #181818;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.tb-game-card:hover .tb-game-content h3 {
    color: var(--tb-primary);
}

.tb-game-team-fit {
    font-family: 'Hind', sans-serif;
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin: 0 0 18px 0;
    line-height: 1.5;
}

.tb-game-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 22px;
}

.tb-game-facts span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Hind', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.tb-game-facts i {
    color: #999;
    font-size: 0.85rem;
}

.tb-game-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.tb-btn-plan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--tb-primary), #c00);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tb-btn-plan:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(246,11,14,0.3);
    color: #fff;
    text-decoration: none;
}

.tb-btn-details {
    display: inline-flex;
    align-items: center;
    padding: 14px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    background: #f0f0f0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tb-btn-details:hover {
    background: #e5e5e5;
    color: #333;
    text-decoration: none;
}

/* Games Prompt */
.tb-games-prompt {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    border: 2px dashed #ddd;
}

.tb-games-prompt p {
    font-family: 'Hind', sans-serif;
    font-size: 1.05rem;
    color: #666;
    margin: 0 0 15px 0;
}

.tb-btn-select-city {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tb-primary);
    background: transparent;
    border: 2px solid var(--tb-primary);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tb-btn-select-city:hover {
    background: var(--tb-primary);
    color: #fff;
    text-decoration: none;
}

/* ==================== 4. HOW IT RUNS ==================== */
.tb-section {
    padding: 70px 0;
}

.tb-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.tb-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #181818;
    text-align: center;
    margin: 0 0 30px 0;
}

.tb-how-runs {
    background: #fff;
}

.tb-how-runs-text {
    font-family: 'Hind', sans-serif;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    text-align: center;
    margin: 0 0 40px 0;
}

.tb-how-runs-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.tb-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.tb-icon-item span:first-child {
    font-size: 2.5rem;
}

.tb-icon-item span:last-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== 5. LOGISTICS ==================== */
.tb-logistics {
    background: #f5f5f5;
}

.tb-logistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.tb-logistics-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 10px;
}

.tb-logistics-item .tb-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.tb-logistics-item span:last-child {
    font-family: 'Hind', sans-serif;
    font-size: 1rem;
    color: #333;
}

.tb-logistics-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.tb-logistics-cta p {
    font-family: 'Hind', sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 0 0 15px 0;
}

.tb-btn-talk {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tb-btn-talk:hover {
    border-color: var(--tb-primary);
    color: var(--tb-primary);
    text-decoration: none;
}

/* ==================== 6. PROOF ==================== */
.tb-proof {
    background: #fff;
    padding: 50px 0;
}

.tb-proof-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
}

.tb-proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.tb-proof-logos img {
    max-width: 100px;
    max-height: 55px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.tb-proof-logos img:hover {
    opacity: 0.8;
    filter: grayscale(50%);
}

/* ==================== PROOF STAT ==================== */
.tb-proof-stat {
    font-family: 'Hind', sans-serif;
    font-size: 0.95rem;
    color: #888;
    text-align: center;
    margin: 25px 0 0 0;
}

/* ==================== EMOTIONAL ==================== */
.tb-emotional {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.tb-emotional .container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.tb-emotional-line1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #181818;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.tb-emotional-line2 {
    font-family: 'Hind', sans-serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .tb-emotional {
        padding: 45px 0;
    }
    .tb-emotional-line1 {
        font-size: 1.2rem;
    }
    .tb-emotional-line2 {
        font-size: 1.05rem;
    }
}

/* ==================== 7. FAQ ==================== */
.tb-faq {
    background: #f8f8f8;
}

.tb-faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tb-faq-item {
    padding: 25px;
    background: #fff;
    border-radius: 10px;
}

.tb-faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #181818;
    margin: 0 0 10px 0;
}

.tb-faq-item p {
    font-family: 'Hind', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .tb-logistics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tb-hero h1 {
        font-size: 2.2rem;
    }
    
    .tb-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .tb-hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .tb-cta-primary, .tb-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .tb-planner {
        position: static;
    }
    
    .tb-planner-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .tb-game-card {
        flex-direction: column;
    }
    
    .tb-game-image {
        width: 100%;
        height: 200px;
    }
    
    .tb-game-content {
        padding: 22px;
    }
    
    .tb-game-facts {
        flex-direction: column;
        gap: 10px;
    }
    
    .tb-game-actions {
        flex-direction: column;
    }
    
    .tb-btn-plan, .tb-btn-details {
        width: 100%;
        justify-content: center;
    }
    
    .tb-how-runs-icons {
        flex-direction: column;
        gap: 25px;
    }
    
    .tb-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .tb-hero h1 {
        font-size: 1.9rem;
    }
    
    .tb-games-header h2 {
        font-size: 1.5rem;
    }
}
